home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / tm211_1.arc / SCR.ARC / WILDCAT.SCR < prev    next >
Text File  |  1990-06-06  |  799b  |  37 lines

  1. ;
  2. ; WILDCAT.SCR is a log on script file for Wildcat BBS
  3. ;
  4.  
  5. FirstName = "first"          ; put your name here
  6. LastName = "last"
  7.  
  8. SkipToMainMenu = 1           ; bypass all the bulletin, 0 for manual operation
  9.  
  10. Waitfor 0                    ; unlimited waiting time
  11.  
  12. if SkipToMainMenu            ; bypass front-end messager
  13.    When "escape","^[^["
  14.    When "<esc> twice","^[^["
  15.    When "esc key","^[^["
  16.    When "[N]onStop:","s"     ; skip all the bulletin
  17.    When "press return","^M"
  18.    When "press [Enter]","^M"
  19. endif
  20.  
  21. Waitfor "What is your First Name? "
  22. Put FirstName
  23.  
  24. Waitfor "What is your Last Name? "
  25. Put LastName
  26.  
  27. Waitfor "Password: "
  28. Put "^&"
  29.  
  30. if SkipToMainMenu
  31.    WhenIdle 5,"^M"
  32.    Waitfor "bulletin menu [y/N]? ",120
  33.    if found
  34.       Put "n"
  35.    endif
  36. endif
  37.